home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / windows / qdhelp10.zip / QDHELP.MAK < prev    next >
Text File  |  1991-10-29  |  478b  |  33 lines

  1. #
  2. # makefile for making hlp files using qdhelp
  3. #
  4.  
  5. #.SUFFIXES .qdh .rtf .hlp
  6.  
  7. QDHELP = qdhelp
  8. HELPCOMP = hc
  9.  
  10. #
  11. # rule for making an .rtf and .hlp file
  12. #
  13.  
  14. .qdh.hlp:
  15.     $(QDHELP) $<
  16.     $(HELPCOMP) $*.hpj
  17.  
  18. #
  19. # make all the hlp files
  20. #
  21.  
  22. HELPFILES = qdhelp.hlp tplate1.hlp tplate2.hlp tplate3.hlp tplate4.hlp
  23.  
  24. all: $(HELPFILES)
  25.  
  26.  
  27. qdhelp.hlp:  qdhelp.qdh
  28. tplate1.hlp: tplate1.qdh
  29. tplate2.hlp: tplate2.qdh
  30. tplate3.hlp: tplate3.qdh
  31. tplate4.hlp: tplate4.qdh
  32.  
  33.